home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2001 June / PC-WELT 6_2001.ISO / misc / mkcds < prev    next >
Encoding:
Text File  |  2001-03-15  |  374 b   |  18 lines

  1. #!/bin/sh
  2. #
  3. #
  4.  
  5. if [ -z $2 ]; then
  6.     echo "
  7. mkcds version 0.0.1
  8. usage:
  9.     mkcds <repository dir> <iso creation dir>
  10. "
  11. exit
  12. fi
  13.  
  14. REP=$1
  15. ISODIR=$2
  16.  
  17. LD_LIBRARY_PATH="$REP/Mandrake/mdkinst/lib/:$REP/Mandrake/mdkinst/usr/lib/perl5/5.6.0/i386-linux/CORE/" "$REP/Mandrake/mdkinst/usr/bin/perl" -I "$REP/Mandrake/mdkinst/usr/lib/perl5/5.6.0/i386-linux/" "$REP/misc/mkcd.pl" $REP $ISODIR
  18.